home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2007 September
/
PCWSEP07.iso
/
Software
/
Linux
/
Linux Mint 3.0 Light
/
LinuxMint-3.0-Light.iso
/
casper
/
filesystem.squashfs
/
usr
/
sbin
/
ndiswrapper
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-03-29
|
302 b
|
20 lines
#!/bin/sh
set -e
latest_ndiswrapper () {
for file in /usr/sbin/ndiswrapper-[\.0-9][\.0-9]*; do
echo $file
done | sort -n -t - -k 2 | tail -1
}
unset LATEST
LATEST=`latest_ndiswrapper`
if [ -x "$LATEST" ]; then
$LATEST "$@"
else
echo "Error: no versions of ndiswrapper found!" 1>&2
exit 1
fi